func crypto/tls.cipherSuiteTLS13ByID

12 uses

	crypto/tls (current package)
		cipher_suites.go#L401: 		if c := cipherSuiteTLS13ByID(cID); c != nil {
		cipher_suites.go#L667: 			return cipherSuiteTLS13ByID(id)
		cipher_suites.go#L673: func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 {
		conn.go#L1341: 	cipherSuite := cipherSuiteTLS13ByID(c.cipherSuite)
		handshake_client.go#L318: 		suite := cipherSuiteTLS13ByID(session.cipherSuite)
		handshake_client.go#L470: 	cipherSuite := cipherSuiteTLS13ByID(session.cipherSuite)
		handshake_client.go#L476: 		offeredSuite := cipherSuiteTLS13ByID(offeredID)
		handshake_client_tls13.go#L342: 		pskSuite := cipherSuiteTLS13ByID(hs.session.cipherSuite)
		handshake_client_tls13.go#L457: 	pskSuite := cipherSuiteTLS13ByID(hs.session.cipherSuite)
		handshake_client_tls13.go#L888: 	cipherSuite := cipherSuiteTLS13ByID(c.cipherSuite)
		handshake_server_tls13.go#L393: 		pskSuite := cipherSuiteTLS13ByID(sessionState.cipherSuite)
		handshake_server_tls13.go#L992: 	suite := cipherSuiteTLS13ByID(c.cipherSuite)